home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-13 / xvisrc.zip / VERSION.C < prev    next >
C/C++ Source or Header  |  1992-07-28  |  758b  |  33 lines

  1. /* Copyright (c) 1992 Chris and John Downey */
  2. #ifndef lint
  3. static char *sccsid = "@(#)version.c    2.4 (Chris & John Downey) 10/15/92";
  4. #endif
  5.  
  6. /***
  7.  
  8. * program name:
  9.     xvi
  10. * function:
  11.     PD version of UNIX "vi" editor, with extensions.
  12. * module name:
  13.     version.c
  14. * module function:
  15.     Version string definition.
  16. * history:
  17.     STEVIE - ST Editor for VI Enthusiasts, Version 3.10
  18.     Originally by Tim Thompson (twitch!tjt)
  19.     Extensive modifications by Tony Andrews (onecom!wldrdg!tony)
  20.     Heavily modified by Chris & John Downey
  21.  
  22. ***/
  23.  
  24. #ifndef lint
  25. static char *copyright = "@(#)Copyright (c) 1992 Chris & John Downey";
  26. #endif
  27.  
  28. #ifdef __DATE__
  29.     char    Version[] = "Xvi 2.15 " __DATE__;
  30. #else
  31.     char    Version[] = "Xvi 2.15 15th October 1992";
  32. #endif
  33.